home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 419_01 / odmg10 / lib / odmg / test / Test.h < prev   
Encoding:
C/C++ Source or Header  |  1994-02-28  |  697 b   |  41 lines

  1. /*******************************<+>***************************
  2.  **                             DTA
  3.  *************************************************************
  4.  **
  5.  **  $Id: Test.h,v 1.3 1994/03/01 23:01:28 dta Exp $
  6.  **
  7.  **  $Source: /cvs/lib/odmg/test/Test.h,v $
  8.  **
  9.  **  What @(#):
  10.  **
  11.  **  Author: Dale T. Anderson
  12.  **
  13.  *******************************<+>***************************/
  14.  
  15. #ifndef _Test_h
  16. #define _Test_h
  17.  
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20.  
  21. class CTest
  22. {
  23.     int m_val;
  24.  
  25.     public:
  26.  
  27.     CTest (const int val = 0);
  28.     virtual ~CTest ();
  29.  
  30.     void Print ();
  31.     int GetVal (void) const { return m_val; };
  32. };
  33.  
  34. extern int verbose;
  35.  
  36. #include <Odmg/Collection.h>
  37.  
  38. #include "Testlib.h"
  39.  
  40. #endif
  41.